home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 11 / Amiga Plus 11: Amiga Future.iso / demoversionen / spiele / flyinhighpatch / install patch < prev    next >
Text File  |  1997-11-07  |  2KB  |  35 lines

  1. (set @app-name "Flyin\'High Patch")
  2. (set @pretend 0)
  3. (set @user-level 2)
  4. (if (= @language "deutsch")
  5.  (
  6.   (set #MSG_WELCOME "Willkommen zur Installation des Patches für Flyin\'High.")
  7.   (set #MSG_ASKDIR "Bitte geben Sie das Verzeichnis auf Ihrer Festplatte an, in dem sich Flyin\'High befindet.")
  8.   (set #HELP_ASKDIR "Dieses Verzeichnis muß angegeben werden, damit der Installer weiß, wohin die Daten kopiert werden müssen.")
  9.   (set #MSG_WRONGDIR "In dem angegebenen Verzeichnis konnte keine existierende Installation von Flyin\'High gefunden werden.")
  10.   (set #MSG_UNPACK "Entpacke Archiv. Dieser Vorgang kann etwas Zeit beanspruchen.")
  11.   (set #MSG_COMPLETE "Die Installation des Patches ist abgeschlossen.\nViel Spaß mit Flyin\'High wünscht P.U.R.E.")
  12.  )
  13.  (
  14.   (set #MSG_WELCOME "Welcome the the installation of the patch for Flyin\'High.")
  15.   (set #MSG_ASKDIR "Please select the directory on your harddisk, in which Flyin\'High is installed.")
  16.   (set #HELP_ASKDIR "This directory must be selected, that the Installer knows where to copy the data to.")
  17.   (set #MSG_WRONGDIR "No existing installation of Flyin\'High was found in the selected directory.")
  18.   (set #MSG_UNPACK "Unpacking archive. This procedure may take some time.")
  19.   (set #MSG_COMPLETE "The installation of the patch is now complete.\nP.U.R.E. wishes you a lot of fun with Flyin\'High.")
  20.  )
  21. )
  22. (welcome #MSG_WELCOME)
  23. (set #default-dest (askdir (prompt #MSG_ASKDIR) (default @default-dest) (help #HELP_ASKDIR) (disk)))
  24. (if (NOT(AND (= (exists (tackon #default-dest "Flyin\'High") (noreq)) 1) (= (exists (tackon #default-dest "gfx") (noreq)) 2)))
  25.  (exit #MSG_WRONGDIR (quiet))
  26.  (
  27.   (working #MSG_UNPACK)
  28.   (run ("Flyin\'Patch:lhex >CON: -fw= \"%s\" x Flyin\'Patch:patch.lha" #default-dest))
  29.   (run "avail >NIL: flush")
  30.   (complete 100)
  31.   (exit #MSG_COMPLETE (quiet))
  32.  )
  33. )
  34.  
  35.